home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / harrythehamster.swf / scripts / frame_45 / DoAction.as
Encoding:
Text File  |  2007-09-28  |  292 b   |  24 lines

  1. if(status == "victorious")
  2. {
  3.    tidyUp();
  4.    stopAllSounds();
  5.    if(level < 5)
  6.    {
  7.       gotoAndPlay(46);
  8.    }
  9.    else
  10.    {
  11.       gotoAndPlay(50);
  12.    }
  13. }
  14. else if(status == "buried")
  15. {
  16.    tidyUp();
  17.    stopAllSounds();
  18.    gotoAndPlay(49);
  19. }
  20. else
  21. {
  22.    gotoAndPlay(44);
  23. }
  24.